home *** CD-ROM | disk | FTP | other *** search
/ PC Gamer (Italian) 30 / PC Gamer IT CD 30 1-2.iso / MOTS / GAMEDATA / RESOURCE / JKMRES.GOO / cog_00_soundtrack.cog < prev    next >
Text File  |  1998-02-25  |  414b  |  27 lines

  1. # Jedi Knight Cog Script
  2. #
  3. #
  4. # [YB]
  5. #
  6. # (C) 1997 LucasArts Entertainment Co. All Rights Reserved
  7. # Play soundtrack for level
  8. symbols
  9. message        startup
  10. message        timer
  11.  
  12. int        starttrack        desc=track_to_start_on
  13. int        endtrack        desc=end_of_range
  14. int        loopto            desc_track_to_loop_back_to
  15. end
  16.  
  17. code
  18. startup:
  19.     SetTimer (0.5);
  20.     return;
  21.  
  22. timer:
  23.     playsong(starttrack, endtrack, loopto);
  24.     return;
  25. end
  26.  
  27.